home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
MiscKit1.7.1
/
MiscKit
/
Palettes
/
MiscSwapKitPalette
/
MiscSwapKitPalette.h
< prev
next >
Wrap
Text File
|
1995-04-12
|
612b
|
31 lines
// Copyright (C) 1995
// Use is governed by the MiscKit license
#import <appkit/appkit.h>
#import <apps/InterfaceBuilder.h>
#import "MiscSwapKit.subproj/MiscSwapView.h"
@interface MiscSwapKitPalette:IBPalette
{
id realSwapObject;
id swapImageView;
}
- finishInstantiate;
@end
// This only works because the default drawSelf in the MiscSwapView class
// doesn't do much anyways. Since it doesn't draw anything, you cannot
// see the object in the palette window or anywhere in IB. This fixes that.
@interface MiscSwapView (IBDisplaying)
- drawSelf:(const NXRect *)rects :(int)rectCount;
@end